From 3abc31a2d1ff1a3781469243937d62b26513c81f Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 21 Nov 2011 14:19:51 +0100 Subject: [PATCH] color-button: Notify "color" and "alpha" properties when changing the rgba Bug #664469. --- gtk/gtkcolorbutton.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk/gtkcolorbutton.c b/gtk/gtkcolorbutton.c index 5f13c54606..7494565dcc 100644 --- a/gtk/gtkcolorbutton.c +++ b/gtk/gtkcolorbutton.c @@ -791,6 +791,8 @@ gtk_color_button_set_rgba (GtkColorButton *color_button, gtk_widget_queue_draw (color_button->priv->draw_area); + g_object_notify (G_OBJECT (color_button), "color"); + g_object_notify (G_OBJECT (color_button), "alpha"); g_object_notify (G_OBJECT (color_button), "rgba"); } -- 2.30.2